/* 动效 */
@media (min-width: 768px) {
  .img-up {
    transition: 1s ease;
  }
  .img-up:hover {
    transform: translateY(-10px);
  }
  .img-scale {
    overflow: hidden;
  }
  .img-scale img {
    transition: 1s ease;
  }
  .img-scale:hover img {
    transform: scale(1.05);
  }
  .com-btn {
    transition: 1s ease;
  }
  .com-btn:hover {
    cursor: pointer;
    transform: translateY(-4px);
  }
  .com-fill-btn {
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
  }
  .com-fill-btn:hover {
    border-color: transparent !important;
  }
  .com-fill-btn::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    transition: 1s ease;
    background: #148ffa;
  }
  .com-fill-btn:hover::before {
    width: 100%;
  }
}
.circle path {
  fill: none;
}
.circle svg {
  overflow: visible;
}
.btn:hover {
  transform: translateY(-2px);
}
/* 带箭头按钮 */
.btn {
  transition: 0.6s;
  background-color: var(--theme-color);
  padding: 0.2rem 0.34rem;
  width: fit-content;
  border-radius: max(30px, 0.3rem);
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
.icon-btn,
.icon-btn-white,
.icon-btn-blue {
  padding: 0.21rem 0.34rem;
  border-radius: max(30px, 0.3rem);
}
.icon-btn::after {
  content: '';
  display: inline-block;
  width: max(12px, 0.14rem);
  height: max(12px, 0.14rem);
  margin-left: 0.4rem;
  margin-bottom: 2px;
  background-image: url(../images/index/left-top-arrow.png);
  background-position: center;
  background-size: cover;
  vertical-align: middle;
  line-height: 1;
  font-size: 16px;
}
.icon-btn-white::after {
  content: '';
  display: inline-block;
  width: max(12px, 0.14rem);
  height: max(12px, 0.14rem);
  margin-bottom: 2px;
  margin-left: 0.4rem;
  background-image: url(../images/index/left-top-arrow1.png);
  background-position: center;
  background-size: cover;
  vertical-align: middle;
  line-height: 1;
  font-size: 16px;
}
.icon-btn-blue::after {
  content: '';
  display: inline-block;
  width: max(12px, 0.14rem);
  height: max(12px, 0.14rem);
  margin-left: 0.4rem;
  margin-bottom: 2px;
  background-image: url(../images/index/left-top-arrow.png);
  background-position: center;
  background-size: cover;
  vertical-align: middle;
  line-height: 1;
  font-size: 16px;
}

@keyframes scalefade {
  0% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.98);
  }
}
html {
  scroll-behavior: smooth; /* 设置平滑滚动 */
}
/* 换行 */
@media (max-width: 768px) {
  .com-br {
    display: none;
  }
}
/* 常用宽度 */
.w1400 {
  width: 73.57%;
  margin: 0 auto;
}
.lfet-1400 {
  margin-left: 13.21%;
}
.w1600 {
  width: 84.08%;
  margin: 0 auto;
}
.w1760 {
  width: 92.5%;
  margin: 0 auto;
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1599px) {
  .w1600 {
    width: 90%;
  }
  .w1400 {
    width: 80%;
  }
  .lfet-1400 {
    margin-left: 10%;
  }
}
@media screen and (max-width: 1439px) {
  .w1400 {
    width: 90%;
  }
  .lfet-1400 {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1359px) {
}
@media screen and (max-width: 1279px) {
  .w1200 {
    width: 90%;
  }
}
/* 其它常用主题样式 */
.tit-center {
  text-align: center;
}
.color {
  color: #148ffa;
}
/*头部*/
/* 手机 */
@-webkit-keyframes slideBg_fn {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
@keyframes slideBg_fn {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}
.header {
  z-index: 999;
  /* max-width: 750px; */
  height: 1.1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header .head_logo {
  /* margin: .15rem 0 0 .3rem; */
  float: left;
  width: 185px;
  height: 100%;
  max-height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: url(../images/common/logo.webp) no-repeat center;
  background-size: cover;
}
#header.on .header {
  background-color: #148ffa;
}
.no-scroll #header .header .head_logo,
#header.on .header .head_logo,
#header.on1 .header .head_logo {
  background: url(../images/common/logo.webp) no-repeat center;
  background-size: 80%;
}
.no-scroll #header .header .head_logo {
  -webkit-transition: all 2s;
  transition: all 2s;
}
/*左侧导航*/
.no-scroll {
  overflow: hidden;
}
.head_nav {
  top: 1.85rem;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.head_nav .nav_list {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.nav_list > li > a,
.nav_list > li > p {
  height: 0.8rem;
  text-align: center;
  color: #615656;
  font-size: 24px;
  line-height: 0.8rem;
}
.nav_list > li > a.on,
.nav_list > li > p.on {
  color: #148ffa;
}
/*子导航*/
.ul_nei_nav {
  display: none;
}
.nav_list > li a.on p,
.ul_nei_nav li.curr a {
  color: #148ffa;
}
.ul_nei_nav li a {
  display: inherit;
  color: #666666;
  font-size: 18px;
}
/* menu */
.on .head_nav_btn {
  background-color: #148ffa;
}
.head_nav_btn.open {
  z-index: 999;
  background-color: #148ffa;
}
.head_nav_btn {
  position: absolute;
  top: 0.2rem;
  right: 0.3rem;
  width: 0.7rem;
  height: 0.7rem;
  cursor: pointer;
}
.head_nav_btn span {
  position: absolute;
  top: 0.33rem;
  right: 0;
  left: 0;
  display: inline-block;
  width: 0.36rem;
  height: 0.04rem;
  margin: auto;
  -webkit-transition: background-color 0.3s ease-out 0.1s;
  transition: background-color 0.3s ease-out 0.1s;
  background-color: #fff;
}
.head_nav_btn span:after {
  position: absolute;
  top: 0.14rem;
  left: 0;
  display: inline-block;
  width: 0.36rem;
  height: 0.04rem;
  content: '';
  -webkit-transition: transform 0.3s ease-out, top 0.5s ease 0.4s;
  transition: transform 0.3s ease-out, top 0.5s ease 0.4s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
}
.head_nav_btn span:before {
  position: absolute;
  top: -0.14rem;
  left: 0;
  display: inline-block;
  width: 0.36rem;
  height: 0.04rem;
  content: '';
  -webkit-transition: transform 0.3s ease-out, top 0.5s ease 0.4s;
  transition: transform 0.3s ease-out, top 0.5s ease 0.4s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
}
.head_nav_btn.open span {
  background-color: transparent;
}
.head_nav_btn.open span:after {
  top: 0;
  -webkit-transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
  transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_nav_btn.open span:before {
  top: 0;
  -webkit-transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
  transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(45deg);
}
.head_nav_btn.open .head_nav_bg {
  display: block;
}
.main-menu {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.main-menu.locked {
  visibility: inherit;
  pointer-events: auto;
  opacity: 1;
}
.main-menu .background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: none !important;
}
.main-menu .background .back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
}
.main-menu .background .circle {
  position: absolute;
  right: 4rem;
  bottom: -4rem;
  width: 120vw;
  height: 120vw;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center center 0;
  transform-origin: center center 0;
  border-radius: 50%;
}
.main-menu .background .circle2 {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.main-menu .background .circle.black {
  background: #000;
}
.main-menu .background .circle2 {
  bottom: -10rem;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  background-color: #fff;
}
.main-menu .background .circle.white {
  top: -4rem;
  right: auto;
  bottom: auto;
  left: 4rem;
  background: #fff;
}
.main-menu.locked .background .back {
  visibility: inherit;
  height: 100%;
  opacity: 0.5;
}
.main-menu.locked .background .circle {
  -webkit-transition: all 0.8s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: all 0.8s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  -webkit-transform: scale(5);
  transform: scale(5);
}
/* pc  */
.header-pc {
  position: relative;
  top: 0;
  display: none;
  transition: 1s ease;
  background-color: #148ffa;
}
.header-pc-box {
  display: flex;
  justify-content: space-between;
}
.header-pc-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-pc-center .nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 0.8rem;
  min-height: 50px;
}
.header-pc-center .nav li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.2rem;
}
.header-pc-center .nav-a {
  position: relative;
  transition: 0.6s;
  color: #fff;
}
.header-pc-center .nav-a:hover {
  text-shadow: 0 0 1px #fff;
}
.header-pc-center .nav li::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  content: '';
  transition: 0.5s ease;
  transform: translateX(-50%);
  background-color: #fff;
}
.header-pc-center .nav li:hover::after {
  width: 100%;
  content: '';
}
.header-pc-center .nav li.on::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  content: '';
  transform: translateX(-50%);
  background-color: #fff;
}
.header-pc-center .nav li:hover .pc_ul_nei_nav {
      /* transform: translateY(calc(100% + 0.2rem)); */
    /* bottom: 0; */
    /*display: block;*/
    /*animation: fadeshow 1s forwards;*/
    /*border-radius: 0.1rem;*/
    /*!* border-bottom: 1px solid #666; *!*/
    /*padding: 20px 30px 30px;*/
    /*background-color: #fff;*/

    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    background: #fff;
    border-radius: 0.1rem;
    min-width: 120px;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.05);
    padding: 20px 30px 30px;
}
@keyframes fadeshow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-pc-center .pc_ul_nei_nav {
  position: absolute;
  z-index: -1;
  /* bottom: 100%; */
  top: 100%;
  display: none;
  overflow: hidden;
  width: fit-content;
  padding-top: 10px;
  transition: 1s;
  /* box-shadow: 0 0 0 1px #cdcdcd inset; */
}
.header-pc-center .pc_ul_nei_nav .pc_ul_nei_nav_a {
  /*display: block;*/
  /*padding: 0.1rem 0.2rem;*/
  /*transition: 0.6s;*/
  /*white-space: nowrap;*/
  /*color: #666;*/
  /*background-color: #fff;*/

  /*  border-bottom: 1px solid #ededed;*/


  position: relative;
    color: #666;
    font-size: 14px;
    display: block;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #ededed;
    white-space: nowrap;
    text-align: center;
}
.header-pc-center .pc_ul_nei_nav .pc_ul_nei_nav_a:hover {
  color: #222;
}
.header-pc-right-phone {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.header-pc-right-phone::before {
  content: url(../images/common/telephone.png);
}
.header-pc-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  color: #fff;
  gap: 0.55rem;
}
.header-pc-right-code-span {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.header-pc-right-code-span::before {
  display: block;
  width: 110%;
  /* height: 0.23rem; */
  min-height: 18px;
  margin-bottom: 2px;
  content: '832018';
  text-align: center;
  color: #148ffa;
  border-radius: max(0.04rem, 4px);
  background-color: #fff;
  font-family: 'HarmonyOS-B';
  font-size: var(--font-size-18);
}
.header-pc.active {
  /* animation: navfade 1s linear;
  animation-delay: 3s;
  animation-fill-mode: forwards; */
}
@media (min-width: 768px) and (max-width: 1038px) {
  .header-pc-left .logo {
    display: none;
  }
}
@keyframes navfade {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.header-pc.light {
  background-color: transparent;
}
@media (min-width: 768px) {
  #header {
    display: none;
  }
  .header-pc {
    display: block;
  }
}
/* backtop */
.backtop {
  position: fixed;
  z-index: 90;
  right: 0.4rem;
  bottom: 8vh;
  display: grid;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-template-rows: repeat(1, 1fr);
  gap: 12px;
}
.backtop-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  border-radius: 50%;
  background-color: #148ffa;
  padding: 0.2rem;
  box-sizing: border-box;
}
.backtop-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  border-radius: 50%;
  background-color: #ddd;
  padding: 0.2rem;
  box-sizing: border-box;
}
/* 底部footer */
.footer {
  padding-bottom: 1.2rem;
  background-color: #161616;
}
.footer-left-img-desc {
  margin-top: 0.1rem;
  color: #fff;
  font-size: var(--font-size-24);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 0.2rem;
}
.footer-right {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}
.footer-right-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-right-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max(0.5rem, 30px);
  border-radius: 50%;
  background-color: #148ffa;
  aspect-ratio: 1/1;
}
.footer-right-item-img img {
  width: max(0.25rem, 15px);
}
.footer-right-item-desc div:first-child {
  color: #999;
}
.footer-right-item-desc div:last-child {
  color: #fff;
  font-size: var(--font-size-20);
}
.splice-line {
  margin-bottom: 0.6rem;
  border-bottom: 1px solid #494949;
}
.footer-center {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.7rem;
}
.footer-center-content {
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.footer-center-ul .footer-center-ul-title {
  margin-bottom: 0.44rem;
  color: #fff;
  font-family: HarmonyOS-M;
  font-size: var(--font-size-18);
}
.footer-center-ul li {
  margin-bottom: 0.18rem;
}
.footer-center-ul li a {
  color: #999;
}
.footer-center-ul li a:hover {
  color: #fff;
}
.footer-center-ul-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
}
.footer-center-ul-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.6rem, 30px);
  height: max(0.6rem, 30px);
  border-radius: 50%;
  background-color: #2e2e2e;
}
.footer-center-ul-img a img {
  width: max(0.23rem, 15px);
}
.footer-center-third-party .footer-center-ul-title {
  margin-bottom: 0.44rem;
  color: #fff;
  font-family: HarmonyOS-M;
  font-size: var(--font-size-18);
}
.footer-bottom {
  margin-top: 0.8rem;
}
.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem;
}
.footer-bottom-text {
  color: #666;
}
.footer-bottom-text:hover {
  color: #fff;
}
@media (max-width: 1100px) {
  .footer-left {
    display: none;
  }
  .footer-right {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .footer-right-item-desc div:last-child {
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .footer-center-content {
    display: none;
  }
}
/* 底部跳转链接 */
.bottom-nav {
  position: fixed;
  z-index: 10;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.55rem;
  background-color: #fafafa;
}
.bottom-nav-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.bottom-nav-show-btn {
  position: absolute;
  bottom: 100%;
  display: none;
  width: 40px;
  transition: text 0.6s;
  text-align: center;
  color: #148ffa;
  border-radius: 50% 50% 0 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .bottom-nav-show-btn {
    display: block;
  }
  .bottom-nav-content {
    background-color: #fafafa;
    grid-template-columns: repeat(1, 80px);
  }
  .bottom-nav {
    height: auto;
    padding: 0.4rem 0;
    transition: 0.6s;
    transform: translateY(100%);
  }
  .bottom-nav.active {
    transform: none;
  }
  .bottom-nav.active .bottom-nav-show-btn {
    transform: rotate(180deg);
    border-radius: 0 0 50% 50%;
  }
}
.bottom-nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: var(--font-size-18);
}
.bottom-nav-item a::after {
  content: url(../images/common/small_right.jpg);
}
.bottom-nav-item:not(:first-child) a:before {
  position: absolute;
  top: 50%;
  left: -0.3rem;
  width: 1px;
  height: 0.32rem;
  content: '';
  transform: translateY(-50%);
  background-color: #e2e2e2;
}
/* 专家弹窗 */
.professor-pop {
  position: fixed;
  z-index: 100;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #0000007a;
}
.professor-pop-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.8rem 0.6rem;
  border-radius: 5px;
  background-color: #fff;
  gap: 0.5rem;
}
.professor-pop-right-img img {
  min-width: 250px;
  width: 100%;
  object-fit: cover;
}
.professor-pop-title {
  color: #0072ce;
  font-size: var(--font-size-h2);
}
.professor-pop-job {
  margin-bottom: 0.2rem;
  opacity: 0.8;
  color: #222;
  font-size: var(--font-size-18);
}
.professor-pop-block {
  width: calc(17px + 0.17rem);
  height: calc(4px + 0.04rem);
  margin-bottom: 0.36rem;
  border-radius: 3px;
  background-color: #0072ce;
}
.professor-pop-desc {
  color: #666;
  font-size: max(0.2rem, min(16px));
}
.professor-pop-desc em {
  color: #0072ce;
  font-style: normal;
}
.professor-pop-list-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.3rem;
  gap: 10px;
}
.professor-pop-list-img-item img {
  width: 2.3rem;
  height: 1.3rem;
}
.professor-pop-left {
  flex: 2.76;
  min-width: 360px;
}
.professor-pop-right {
  flex: 1;
}
@media (max-width: 768px) {
  .professor-pop-right {
    position: absolute;
    top: 0.3rem;
    right: 0.6rem;
  }
  .professor-pop-right-img img {
    min-width: unset;
    height: 100px;
  }
  .professor-pop-left {
    min-width: 100%;
  }
}
/* form  */
.form {
  padding: 1rem 0;
  background-color: #f4f4f4;
}
.form-title {
  margin-bottom: 0.24rem;
  font-family: HarmonyOS-M;
  font-size: var(--font-size-24);
  line-height: 1;
}
.form-text {
  margin-bottom: 0.3rem;
  color: #666;
  line-height: 1;
}
.form-content-item {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.2rem;
  gap: 0.2rem;
}
.form-content-item input {
  flex: 1;
  padding: 0.32rem;
  border: none;
  border-radius: 10px;
  background-color: #ffffff;
}
.form-content-item input:focus::placeholder {
  opacity: 0;
}
.form-content-item textarea:focus::placeholder {
  opacity: 0;
}
.form-content-item textarea {
  flex: 1;
  padding: 0.32rem;
  resize: none;
  border: none;
  border-radius: 10px;
  background-color: #fff;
}
.fotm-btn {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.4rem;
  padding: 0.2rem 0.3rem;
  color: #fff;
  border: none;
  border-radius: 10px;
  background-color: #148ffa;
  display: block;
}

.form-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #00000058;

  justify-content: center;
  align-items: center;
}
.form-pop.active {
  display: flex;
}
.form-box {
  width: fit-content;
  padding: 0.6rem 0.8rem 1rem;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}

.bottom-form-close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  background-color: #0072ce;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.form-close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  background-color: #0072ce;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.form-box-title {
  font-size: max(0.6rem, min(30px));
  color: #161616;
  margin-bottom: 0.34rem;
  font-family: HarmonyOS-B;
  line-height: 1;
  text-align: center;
}
.form-box-desc {
  font-size: var(--font-size-p);
  color: #161616;
  line-height: 1;
  margin-bottom: 0.42rem;
  text-align: center;
}
.layui-form input {
  width: 6.8rem;
  min-width: 250px;
  padding: 0.22rem 0.2rem;
  line-height: 1;
  border-radius: 5px;
  border: solid 1px #b8b8b8;
  margin-bottom: 10px;
}
.layui-form input::placeholder {
  color: #161616;
}
.form-box-submit {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: HarmonyOS-B;
  border-radius: 5px;
  border: none;
  background-color: #148ffa;
  padding: 0.22rem 0;
  cursor: pointer;
}

.pc_ul_nei_nav.teshu > div > div > .pc_ul_nei_nav_a,
.pc_ul_nei_nav > div > div > .pc_ul_nei_nav_a{
  font-size: var(--font-size-16) !important;
  line-height: var(--font-size-24) !important;
}
.header-pc-center .pc_ul_nei_nav .pc_ul_nei_nav_a{
  font-size: var(--font-size-15) !important;
  line-height: var(--font-size-24) !important;
}